home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / TECHNICA / COMPUTER / 0784.ZIP / HDINSTAL.BAT < prev    next >
DOS Batch File  |  1987-09-27  |  1KB  |  69 lines

  1. cls
  2. REM This batch program installs EDRAW from floppy A onto a specified hard
  3. REM disk drive.  If this is not what you want, then depress CTRL Break at
  4. REM this time.
  5. pause
  6. echo off
  7. cls
  8. if not "1DIR"=="%11DIR" goto cont
  9. echo You must enter the destination drive letter
  10. echo i.e. INSTALL x where x = the destination drive
  11. goto exit
  12. :cont
  13.  
  14. if not exist RESIS1.DOG GOTO BAD
  15.  
  16. A:
  17. CD \
  18. %1:
  19. cd \
  20. md edraw
  21. COPY A:FIXD.CFG %1:EDRAW.CFG
  22. cd \edraw
  23.  
  24. A:
  25. COPY A:EDRAW.EXE %1:
  26. COPY A:DEMO1 %1:DEMO1.COM
  27. COPY A:DEMO2 %1:DEMO2.COM
  28. COPY A:DEMO3 %1:DEMO3.COM
  29. COPY A:DEMO4 %1:DEMO4.COM
  30.  
  31. COPY A:ED*.BAT %1:
  32. COPY A:README %1:
  33. COPY A:EDRAW.CFG %1:
  34.  
  35. COPY A:FIXD.CFG %1:EDRAW.CFG
  36.  
  37. %1:
  38. cd \edraw
  39. md GATES
  40. cd \EDRAW\GATES
  41. COPY A:*.DOG %1:*.SYM
  42.  
  43. %1:
  44. cd \edraw
  45. md FONT1
  46. cd \EDRAW\FONT1
  47. COPY A:FONTK1 %1:FONT.KEY
  48. COPY A:FONTB1 %1:FONT.BTS
  49. COPY A:FONTF1 %1:FONT1.FNT
  50.  
  51. %1:
  52. CD \EDRAW
  53. md FONT5
  54. cd \EDRAW\FONT5
  55. COPY A:FONTK5 %1:FONT.KEY
  56. COPY A:FONTB5 %1:FONT.BTS
  57. COPY A:FONTF5 %1:FONT1.FNT
  58. cd \
  59. A:
  60. CD \
  61. GOTO EXIT
  62.  
  63. :BAD
  64. ECHO This is not original EDRAW distribution disk. Batch aborted
  65.  
  66. :exit
  67.  
  68.  
  69.